home *** CD-ROM | disk | FTP | other *** search
- /*
- $VER: SuperView_ARexx_Demo V3.1 (5.6.94)
- © 1993-94 by Andreas R. Kleinert
- This is an - quite primitive - example how to access
- SuperView's ARexx port from within an ARexx-Script.
-
- */
-
- address command
-
- SuperView "-INSTALL_APPMENU=FALSE -INSTALL_APPICON=FALSE"
-
- say ""
- say "ARexx : SuperView has been started : Waiting three seconds ..."
-
- wait 3
-
- say "ARexx : Loading a GIF Graphics via the LOAD command"
- address 'SuperView.rx' "LOAD=SuperView.GIF"
- say "ARexx : Saving Graphics as IFF-ILBM (CmpByteRun1)"
-
- address 'SuperView.rx' "SAVE_ILBM1=SuperView.ilbm"
-
- wait 3
-
- say "ARexx : Load this IFF-ILBM Gfx now for control"
-
- address 'SuperView.rx' "SHOW=SuperView.ilbm"
-
- say "ARexx : O.K. : Let's quit !"
-
- Wait 2
-
- address 'SuperView.rx' "QUIT"
-
- exit
-